Social Mimicry
Small network (statistics)
But first, a detour!
We will look at the following myths:
“SAS is easier than R”
“SAS is required for drug tests by the FDA”
“R is cool… but it can’t handle data out-of-memory like SAS”
“SAS has a higher demand than R in the job market”
Myth: “SAS is easier than R”
Reallity: Take a look at this simple task of importing a CSV file with a header
dataset <- read.csv("mydata.csv")PROC IMPORT DATAFILE = "mydata.csv" GETNAMES = yes OUT = dataset REPLACE;
getmames = yes;
run;
You be the judge…
Myth: “SAS is required for drug tests by the FDA”